body{
    height: 100%;
    background-color: rgb(21, 5, 28);
}
.container{
    background-color: #1d0a1e;
    display: block;
    position: relative;
    margin: 40px auto;
    height: fit-content;
    width: fit-content;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.3);
}
h2{
    color: #AAAAAA;
}
.container ul{
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: auto;
    li{
        color: #AAAAAA;
        display: block;
        position: relative;
        float: left;
        width: 100%;
        height: 100px;
        border-bottom: 1px solid #333;
        :hover{
            color: #2efe46;
        }
        label{
            display: block;
            position: relative;
            font-weight: 300;
            font-size: 1.35rem;
            padding: 25px 25px 25px 80px;
            margin: 10px auto;
            z-index: 9;
            cursor: pointer;
            -webkit-transition: all 0.25s linear;
        }
    }
}
ul li input[type=radio]{
    position: absolute;
    visibility: hidden;
}

  ul li .check{
    display: block;
    position: absolute;
    border: 5px solid #AAAAAA;
    border-radius: 100%;
    height: 25px;
    width: 25px;
    top: 30px;
    left: 20px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
  }
  
  ul li:hover .check {
    border: 5px solid #2efe46;
  }
  
  ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 15px;
    width: 15px;
    top: 5px;
    left: 5px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
  }
  
  input[type=radio]:checked ~ .check {
    border: 5px solid #2efe46;
  }
  
  input[type=radio]:checked ~ .check::before{
    background: #2efe46;
  }
  
  input[type=radio]:checked ~ label{
    color: #2efe46;
  }
